show double in textbox c#

73

show double in textbox c# -

private void button1_Click(object sender, EventArgs e)
{
    double b = 0.60;
    textBox1.Text = b.ToString("0.00");
}

Comments

Submit
0 Comments